home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / windows 95 utilities / programming tools / the master add-in / clogfileconst.bas < prev    next >
BASIC Source File  |  1996-12-23  |  2KB  |  55 lines

  1. Attribute VB_Name = "basLogFileConst"
  2. ' ======================================================================
  3. ' Copyright (C) 1996, Patrick J. Cuff Jr.
  4. '
  5. ' This library is free software; you can redistribute it and/or
  6. ' modify it under the terms of the GNU Library General Public
  7. ' License as published by the Free Software Foundation; either
  8. ' version 2 of the License, or any later version.
  9. '
  10. ' This library is distributed in the hope that it will be useful,
  11. ' but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. ' Library General Public License for more details.
  14. '
  15. ' You should have received a copy of the GNU Library General Public
  16. ' License along with this library; if not, write to the
  17. ' Free Software Foundation, Inc., 59 Temple Place - Suite 330, Cambridge,
  18. ' MA 02139, USA.
  19. ' ======================================================================
  20. ' CLogFileConst.BAS -- Log File Constants
  21. ' ----------------------------------------------------------------------
  22. ' This file contains constants needed by the CLogFile class properties
  23. ' and methods.
  24. ' ======================================================================
  25. ' Revision History:
  26. '    Date     Programmer                Description
  27. ' ----------  ------------------------  --------------------------------
  28. ' 12-02-1996  Patrick J. Cuff Jr.       Original program logic
  29. ' ======================================================================
  30. Option Explicit
  31.  
  32. ' ----------------------------------------------------------------------
  33. ' Global Constants
  34. ' ----------------------------------------------------------------------
  35. ' Severity Constants
  36. Public Const clfINFORMATIONAL = 0
  37. Public Const clfDEBUG = 1
  38. Public Const clfWARNING = 2
  39. Public Const clfERROR = 3
  40. Public Const clfCRITICAL = 4
  41.  
  42. ' Log File Status Constants
  43. Public Const clfCLOSED = 0
  44. Public Const clfOPEN = 1
  45.  
  46. ' Log File Error  Constants
  47. Public Const clfERR_SEVERITY_INVALID = 513
  48. Public Const clfERR_LOGFILE_NAME_REQUIRED = 514
  49. Public Const clfERR_LOGFILE_OPEN = 515
  50. Public Const clfERR_LOGFILE_CLOSED = 516
  51. Public Const clfERR_GENERAL_FAILURE = 65535
  52.  
  53. ' Log File Source Name
  54. Public Const clfSVR_SOURCENAME = "CLogFile - VB Log File Server"
  55.